net/http.Server.activeConn (field)
9 uses
net/http (current package)
server.go#L2721: activeConn map[*conn]struct{}
server.go#L2750: for c := range srv.activeConn {
server.go#L2752: delete(srv.activeConn, c)
server.go#L2841: for c := range s.activeConn {
server.go#L2856: delete(s.activeConn, c)
server.go#L3161: if s.activeConn == nil {
server.go#L3162: s.activeConn = make(map[*conn]struct{})
server.go#L3165: s.activeConn[c] = struct{}{}
server.go#L3167: delete(s.activeConn, c)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |